Music integration started. Only menu music included in game. All music is already on the data.jrf

This commit is contained in:
2016-02-19 19:51:17 +01:00
parent f9ef26deda
commit c746a131c1
5 changed files with 9 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
#include "jgame.h"
#include "jdraw8.h"
#include "jsound.h"
#include "jfile.h"
#include "info.h"
#include "modulegame.h"
@@ -31,6 +32,7 @@ int main( int argc, char* args[] ) {
JG_Init();
JD8_Init("Aventures En Egipte");
JS_Init();
Info info;
info.num_habitacio = 1;
@@ -60,6 +62,7 @@ int main( int argc, char* args[] ) {
}
JF_Quit();
JS_Finalize();
JD8_Quit();
JG_Finalize();