Skip to content

Commit

Permalink
SCI32: Change kAddLine to use kStubNull b/c signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kiewitz committed Feb 20, 2016
1 parent dda637e commit a124690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sci/engine/kgraphics32.cpp
Expand Up @@ -657,7 +657,7 @@ reg_t kEditText(EngineState *s, int argc, reg_t *argv) {
}

reg_t kAddLine(EngineState *s, int argc, reg_t *argv) {
return kStub(s, argc, argv);
return kStubNull(s, argc, argv); // return 0:0 for now, so that follow up calls won't create signature mismatches
#if 0
reg_t plane = argv[0];
Common::Point startPoint(argv[1].toUint16(), argv[2].toUint16());
Expand Down

0 comments on commit a124690

Please sign in to comment.