aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/script_e1.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2007-09-19 08:40:12 +0000
committerNicola Mettifogo2007-09-19 08:40:12 +0000
commit258901bab96f0050385a9912c8ea0fe2a41b2d6f (patch)
treea3ae8675b679c9f3b58ac8d97c79369502ea23c1 /engines/agos/script_e1.cpp
parenta89694c0d61a75a960f5bec6c498659c988401cc (diff)
downloadscummvm-rg350-258901bab96f0050385a9912c8ea0fe2a41b2d6f.tar.gz
scummvm-rg350-258901bab96f0050385a9912c8ea0fe2a41b2d6f.tar.bz2
scummvm-rg350-258901bab96f0050385a9912c8ea0fe2a41b2d6f.zip
Merged common/stdafx.h into common/scummsys.h. All referencing files have been updated.
svn-id: r28966
Diffstat (limited to 'engines/agos/script_e1.cpp')
-rw-r--r--engines/agos/script_e1.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/agos/script_e1.cpp b/engines/agos/script_e1.cpp
index 5a1d7d104b..c3f7c841dc 100644
--- a/engines/agos/script_e1.cpp
+++ b/engines/agos/script_e1.cpp
@@ -23,7 +23,7 @@
*
*/
-#include "common/stdafx.h"
+
#include "agos/agos.h"
#include "agos/vga.h"
@@ -505,7 +505,7 @@ void AGOSEngine_Elvira1::oe1_copyfo() {
void AGOSEngine_Elvira1::oe1_whatO() {
// 57: what o
- int a = getVarOrWord();
+ int a = getVarOrWord();
if (a == 1)
_subjectItem = findMaster(_scriptAdj1,_scriptNoun1);
@@ -896,7 +896,7 @@ void AGOSEngine_Elvira1::oe1_pauseGame() {
// 274: pause game
WindowBlock *window = _windowArray[4];
const char *message1, *message2;
-
+
time_t pauseTime = time(NULL);
haltAnimation();
@@ -933,7 +933,7 @@ restart:
window->textRow = 0;
window->textColumnOffset = 0;
window->textLength = 0; // Difference
-
+
switch (_language) {
case Common::FR_FRA:
message1 = " Etes-vous s<r ?\r\r\r";
@@ -1163,7 +1163,7 @@ void AGOSEngine::printStats() {
if (val < -99)
val = -99;
if (val > 99)
- val = 99;
+ val = 99;
writeChar(window, 5, 133, 6, val);
// Resolution
@@ -1171,7 +1171,7 @@ void AGOSEngine::printStats() {
if (val < -99)
val = -99;
if (val > 99)
- val = 99;
+ val = 99;
writeChar(window, 11, 133, 6, val);
// Dexterity
@@ -1179,7 +1179,7 @@ void AGOSEngine::printStats() {
if (val < -99)
val = -99;
if (val > 99)
- val = 99;
+ val = 99;
writeChar(window, 18, 133, 0, val);
// Skill
@@ -1187,7 +1187,7 @@ void AGOSEngine::printStats() {
if (val < -99)
val = -99;
if (val > 99)
- val = 99;
+ val = 99;
writeChar(window, 24, 133, 0, val);
// Life
@@ -1195,7 +1195,7 @@ void AGOSEngine::printStats() {
if (val < -99)
val = -99;
if (val > 99)
- val = 99;
+ val = 99;
writeChar(window, 30, 133, 2, val);
// Experience
@@ -1203,7 +1203,7 @@ void AGOSEngine::printStats() {
if (val < -99)
val = -99;
if (val > 99)
- val = 99;
+ val = 99;
writeChar(window, 36, 133, 4, val);
mouseOn();