SCI: Move kGetWindowsOption together with the other misc kernel functions

This commit is contained in:
Filippos Karapetis 2012-07-03 18:11:41 +03:00
parent 9184a40fcc
commit 5a47afea9e
2 changed files with 12 additions and 12 deletions

View File

@ -197,18 +197,6 @@ reg_t kDisposeTextBitmap(EngineState *s, int argc, reg_t *argv) {
return s->r_acc;
}
reg_t kGetWindowsOption(EngineState *s, int argc, reg_t *argv) {
uint16 windowsOption = argv[0].toUint16();
switch (windowsOption) {
case 0:
// Title bar on/off in Phantasmagoria, we return 0 (off)
return NULL_REG;
default:
warning("GetWindowsOption: Unknown option %d", windowsOption);
return NULL_REG;
}
}
reg_t kWinHelp(EngineState *s, int argc, reg_t *argv) {
switch (argv[0].toUint16()) {
case 1:

View File

@ -419,6 +419,18 @@ reg_t kGetSierraProfileInt(EngineState *s, int argc, reg_t *argv) {
return argv[2];
}
reg_t kGetWindowsOption(EngineState *s, int argc, reg_t *argv) {
uint16 windowsOption = argv[0].toUint16();
switch (windowsOption) {
case 0:
// Title bar on/off in Phantasmagoria, we return 0 (off)
return NULL_REG;
default:
warning("GetWindowsOption: Unknown option %d", windowsOption);
return NULL_REG;
}
}
#endif
// kIconBar is really a subop of kMacPlatform for SCI1.1 Mac