Browse Source

Merge pull request #887 from AJenbo/S_StartBoy

Clean up S_StartBoy
pull/88/head
Robin Eklind 7 years ago committed by GitHub
parent
commit
a357927766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      Source/stores.cpp

8
Source/stores.cpp

@ -1453,16 +1453,16 @@ void S_StartBoy()
stextscrl = 0;
AddSText(0, 2, 1u, "Wirt the Peg-legged boy", COL_GOLD, 0);
AddSLine(5);
if (boyitem._itype == -1) {
AddSText(0, 12, 1u, "Talk to Wirt", COL_BLUE, 1);
AddSText(0, 18, 1u, "Say goodbye", COL_WHITE, 1);
} else {
if (boyitem._itype != -1) {
AddSText(0, 8, 1u, "Talk to Wirt", COL_BLUE, 1);
AddSText(0, 12, 1u, "I have something for sale,", COL_GOLD, 0);
AddSText(0, 14, 1u, "but it will cost 50 gold", COL_GOLD, 0);
AddSText(0, 16, 1u, "just to take a look. ", COL_GOLD, 0);
AddSText(0, 18, 1u, "What have you got?", COL_WHITE, 1);
AddSText(0, 20, 1u, "Say goodbye", COL_WHITE, 1);
} else {
AddSText(0, 12, 1u, "Talk to Wirt", COL_BLUE, 1);
AddSText(0, 18, 1u, "Say goodbye", COL_WHITE, 1);
}
}
// 6A09E0: using guessed type char stextsize;

Loading…
Cancel
Save