use picofe menu, move generic code out of gp2x/
[fceu.git] / fceu098.c
index 2d76a0c..ecc6bfd 100644 (file)
--- a/fceu098.c
+++ b/fceu098.c
@@ -24,7 +24,6 @@
 #include       "fce.h"
 #include       "ppu098.h"
 #include       "sound.h"
-#include       "sound098.h"
 #include       "input.h"
 #include       "cart.h"
 #include       "cheat.h"
@@ -59,7 +58,7 @@ void FCEUI_Emulate098(void)
    break;
   }
 
-  ssize=FlushEmulateSound098();
+  ssize=FlushEmulateSound();
 
   timestampbase += timestamp;
   timestamp = 0;
@@ -84,15 +83,8 @@ void FCEUI_Emulate098(void)
 void ResetNES098(void)
 {
  ResetNES081();
- FCEUSND_Reset();
+ // it was decided not to use 098 sound because of problems it causes
+ //FCEUSND_Reset();
  FCEUPPU_Reset();
 }
 
-
-void PowerNES098(void)
-{
- PowerNES081();
- FCEUSND_Power();
- FCEUPPU_Power();
-}
-