- Timestamp:
- 2006-06-04T12:22:54Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 26f48570
- Parents:
- 67ec84b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fb/main.c
r67ec84b rdd641e3 57 57 int initialized = 0; 58 58 59 #ifdef ia32 59 60 if (sysinfo_value("fb.kind") == 1) { 60 61 if (fb_init() == 0) … … 64 65 initialized = 1; 65 66 } 67 #endif 68 69 #ifdef amd64 70 if (sysinfo_value("fb.kind") == 1) { 71 if (fb_init() == 0) 72 initialized = 1; 73 } else if (sysinfo_value("fb.kind") == 2) { 74 if (ega_init() == 0) 75 initialized = 1; 76 } 77 #endif 78 79 66 80 67 81 if (!initialized)
Note:
See TracChangeset
for help on using the changeset viewer.