mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-20 02:39:51 +00:00
Fix API usage errors
This commit is contained in:
parent
229bd8505e
commit
9de0c9045a
1 changed files with 2 additions and 2 deletions
|
@ -631,7 +631,7 @@ namespace
|
|||
|
||||
if (page+2 < book->pageCount())
|
||||
{
|
||||
MWBase::Environment::get().getWindowManager()->playSound("book page", true);
|
||||
MWBase::Environment::get().getWindowManager()->playSound("book page");
|
||||
|
||||
page += 2;
|
||||
updateShowingPages ();
|
||||
|
@ -649,7 +649,7 @@ namespace
|
|||
|
||||
if(page >= 2)
|
||||
{
|
||||
MWBase::Environment::get().getWindowManager()->playSound("book page", true);
|
||||
MWBase::Environment::get().getWindowManager()->playSound("book page");
|
||||
|
||||
page -= 2;
|
||||
updateShowingPages ();
|
||||
|
|
Loading…
Reference in a new issue