DREAMWEB: Fix typo in useWire() (thanks wjp, fuzzie)

This commit is contained in:
Filippos Karapetis 2011-12-12 18:19:17 +02:00
parent 903ce79138
commit ad0ddcbb8e

View File

@ -1127,7 +1127,7 @@ void DreamGenContext::useWire() {
}
char axe[4] = { 'A', 'X', 'E', 'D' }; // TODO: convert to string with trailing zero
if (!compare(data.byte(kWithobject), data.byte(kWithtype), axe)) {
if (compare(data.byte(kWithobject), data.byte(kWithtype), axe)) {
showPuzText(16, 300);
putBackObStuff();
return;