Changeset 5424 for trunk/src/kernel32/codepage.cpp
- Timestamp:
- Apr 1, 2001, 2:33:10 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/codepage.cpp
r5411 r5424 1 /* $Id: codepage.cpp,v 1. 8 2001-03-31 10:39:01sandervl Exp $1 /* $Id: codepage.cpp,v 1.9 2001-04-01 12:33:10 sandervl Exp $ 2 2 ** 3 3 ** Module :CODEPAGE.CPP … … 31 31 if(displayCodePage == -1) { 32 32 //default codepage is 1252 (same as default Windows codepage) 33 //displayCodePage = PROFILE_GetOdinIniInt(CODEPAGE_SECTION, "DISPLAY", 1252);34 displayCodePage = PROFILE_GetOdinIniInt(CODEPAGE_SECTION, "DISPLAY", 0);33 displayCodePage = PROFILE_GetOdinIniInt(CODEPAGE_SECTION, "DISPLAY", 1252); 34 // displayCodePage = PROFILE_GetOdinIniInt(CODEPAGE_SECTION, "DISPLAY", 0); 35 35 } 36 36 return displayCodePage; … … 41 41 if(windowCodePage == -1) { 42 42 //default codepage is 1252 (same as default Windows codepage) 43 //windowCodePage = PROFILE_GetOdinIniInt(CODEPAGE_SECTION, "WINDOWS", 1252);44 windowCodePage = PROFILE_GetOdinIniInt(CODEPAGE_SECTION, "WINDOWS", 0);43 windowCodePage = PROFILE_GetOdinIniInt(CODEPAGE_SECTION, "WINDOWS", 1252); 44 // windowCodePage = PROFILE_GetOdinIniInt(CODEPAGE_SECTION, "WINDOWS", 0); 45 45 } 46 46 return windowCodePage;
Note:
See TracChangeset
for help on using the changeset viewer.