get the args in the right order for Rect

This commit is contained in:
Bill Currie 2002-08-20 06:12:02 +00:00
parent c927b2e834
commit e4d587fdcf
1 changed files with 2 additions and 2 deletions

View File

@ -476,9 +476,9 @@ void () main_menu =
void () menu_init = void () menu_init =
{ {
id (lanConfig_port_il) = [[InputLine alloc] initWithBounds:[[Rect alloc] initWithComponents:126 :lanConfig_cursor_table[0] :4 :8] promptCharacter:' ']; id (lanConfig_port_il) = [[InputLine alloc] initWithBounds:[[Rect alloc] initWithComponents:126 :lanConfig_cursor_table[0] :8 :4] promptCharacter:' '];
[lanConfig_port_il setWidth:10]; [lanConfig_port_il setWidth:10];
id (lanConfig_join_il) = [[InputLine alloc] initWithBounds:[[Rect alloc] initWithComponents:70 :lanConfig_cursor_table[2] :4 :24] promptCharacter:' ']; id (lanConfig_join_il) = [[InputLine alloc] initWithBounds:[[Rect alloc] initWithComponents:70 :lanConfig_cursor_table[2] :24 :4] promptCharacter:' '];
[lanConfig_join_il setWidth:26]; [lanConfig_join_il setWidth:26];
switch (gametype ()) { switch (gametype ()) {
case "netquake": case "netquake":