SCI: Add kReadNumber fixme

Thanks to Walter for noticing this.
This commit is contained in:
Willem Jan Palenstijn 2012-10-05 16:40:57 +02:00
parent 8335e340fd
commit ba1307b0ce

View File

@ -165,6 +165,7 @@ reg_t kReadNumber(EngineState *s, int argc, reg_t *argv) {
// do clipping. In SQ4 we get the door code in here and that's even
// larger than uint32!
if (*source == '-') {
// FIXME: Setting result to -1 does _not_ negate the output.
result = -1;
source++;
}