eliot-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Eliot-dev] Changes to eliot/utils/ncurses.cpp


From: eliot-dev
Subject: [Eliot-dev] Changes to eliot/utils/ncurses.cpp
Date: Sat, 05 Nov 2005 18:22:45 -0500

Index: eliot/utils/ncurses.cpp
diff -u eliot/utils/ncurses.cpp:1.15 eliot/utils/ncurses.cpp:1.16
--- eliot/utils/ncurses.cpp:1.15        Sat Nov  5 15:48:59 2005
+++ eliot/utils/ncurses.cpp     Sat Nov  5 23:22:42 2005
@@ -257,7 +257,7 @@
     drawBox(win, y, x, LINES - y, COLS - x, _(" History of the game "));
     m_boxY = y + 1;
     m_boxLines = LINES - y - 2;
-    m_boxLinesData = m_game->getNRounds();
+    m_boxLinesData = m_game->getNTurns();
 
     // Heading
     boxPrint(win, m_boxStart, x + 2,
@@ -265,7 +265,7 @@
     mvwhline(win, y + 2, x + 2, ACS_HLINE, 55);
 
     int i;
-    for (i = m_boxStart + 0; i < m_game->getNRounds() &&
+    for (i = m_boxStart + 0; i < m_game->getNTurns() &&
                          i < m_boxStart + m_boxLines; i++)
     {
         string word = m_game->getPlayedWord(i);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]