_controlfp fix (grischka)
This commit is contained in:
parent
5556cf1565
commit
58f6207abe
2 changed files with 84 additions and 84 deletions
|
|
@ -23,7 +23,7 @@ int _start(void)
|
|||
int argc; char **argv; char **env; int ret;
|
||||
_startupinfo start_info = {0};
|
||||
|
||||
_controlfp(0x30000, 0x10000);
|
||||
_controlfp(0x10000, 0x30000);
|
||||
__set_app_type(__CONSOLE_APP);
|
||||
__getmainargs(&argc, &argv, &env, 0, &start_info);
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ int _winstart(void)
|
|||
char *szCmd; STARTUPINFO startinfo;
|
||||
|
||||
__set_app_type(__GUI_APP);
|
||||
_controlfp(0x30000, 0x10000);
|
||||
_controlfp(0x10000, 0x30000);
|
||||
|
||||
szCmd = GetCommandLine();
|
||||
if (szCmd)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue