Author Topic: FB Alpha 0.2.97.08 Bugs Reports  (Read 61897 times)

Offline BisonSAS

  • Expert
  • *****
  • Posts: 210
  • Karma: +27/-0
  • [NGBRT]
    • NeoGeo BR Team
Include cheat bug
« Reply #15 on: March 11, 2010, 11:20:00 PM »
FB Alpha don't found the "include" cheat file.



The fix in attachment.

src\burner\conc.cpp

Edited by Treble Winner: Reason: Bug fixed thanks to BisonSAS
« Last Edit: March 13, 2010, 04:53:18 AM by Treble Winner »

Offline CaptainCPS

  • FBNeo Dev
  • ******
  • Posts: 1513
  • Karma: +127/-0
  • FB Alpha Team
    • CaptainCPS's Home
Re: Include cheat bug
« Reply #16 on: March 11, 2010, 11:40:24 PM »
FB Alpha don't found the "include" cheat file.



The fix in attachment.

src\burner\conc.cpp

Thanks BisonSAS! ^^ Nice!

SeeYaa!
 :biggrin:

Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #17 on: March 13, 2010, 04:53:51 AM »
I've fixed some of these and/or added the features. I've highlighted fixes in red in the original posts.
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.

Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #18 on: March 13, 2010, 04:56:09 AM »
Mine was at line 493... There are a few "}", just delete one (or comment it with "//" in the left) and you're ready to go.

Before:
Code: [Select]
      }
     }
    }
   }
  }

After:
Code: [Select]
      }
     }
    }
   }
//  }

This one is wierd. Seems to be related to the menu additions in app.rc for the new import feature. Comment those out and the problem goes away. Or comment out enough items and the problem goes away. I can't see anything wrong with anything in app.rc - I think we've gone over a predetermined limit for number of items somewhere.

I've tried increasing some of the buffers in localise.cpp with no success however.
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.

Offline CaptainCPS

  • FBNeo Dev
  • ******
  • Posts: 1513
  • Karma: +127/-0
  • FB Alpha Team
    • CaptainCPS's Home
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #19 on: March 13, 2010, 11:10:45 AM »
This one is wierd. Seems to be related to the menu additions in app.rc for the new import feature. Comment those out and the problem goes away. Or comment out enough items and the problem goes away. I can't see anything wrong with anything in app.rc - I think we've gone over a predetermined limit for number of items somewhere.

I've tried increasing some of the buffers in localise.cpp with no success however.

I have not done an extensive check but I found something interesting in localize.cpp, there is a part where some kind of controls are excluded, I think they need to be updated since there are some new control types added, like Tabs and Progress Bars, maybe if we add these: msctls_progress32 , SysTabControl32 , I don't know maybe it does something.

Edit: Maybe adding this one too does something: RICHEDIT20A

(This is the code section I'm talking about)
Quote

         
default:
            if ( !
wcsicmp((wchar_t*)pTemplateDataInL"SysTreeView32") ||
                !
wcsicmp((wchar_t*)pTemplateDataInL"SysListView32") ||
                !
wcsicmp((wchar_t*)pTemplateDataInL"Edit")         ||
                !
wcsnicmp((wchar_t*)pTemplateDataInL"RichEdit",  ||
               (!
wcsicmp((wchar_t*)pTemplateDataInL"Static") && (dwStyle SS_BITMAP))) {

               
bExcludeControl true;
            }


When I finish a few University homeworks and study for a test I will check this out and post the results :)

Btw, nice to see all these bugs being fixed ^^, thanks to everyone for collaborating and posting in this thread! if you find more keep posting!

SeeYaa!
 :D
« Last Edit: March 13, 2010, 11:14:08 AM by CaptainCPS-X »

Offline BisonSAS

  • Expert
  • *****
  • Posts: 210
  • Karma: +27/-0
  • [NGBRT]
    • NeoGeo BR Team
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #20 on: March 13, 2010, 12:39:57 PM »
The controls don't work in Line of Fire / Bakudan Yarou (Sega)

Offline CaptainCPS

  • FBNeo Dev
  • ******
  • Posts: 1513
  • Karma: +127/-0
  • FB Alpha Team
    • CaptainCPS's Home
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #21 on: March 13, 2010, 01:41:42 PM »
I have not done an extensive check but I found something interesting in localize.cpp, there is a part where some kind of controls are excluded, I think they need to be updated since there are some new control types added, like Tabs and Progress Bars, maybe if we add these: msctls_progress32 , SysTabControl32 , I don't know maybe it does something.

Edit: Maybe adding this one too does something: RICHEDIT20A

(This is the code section I'm talking about)
When I finish a few University homeworks and study for a test I will check this out and post the results :)

Btw, nice to see all these bugs being fixed ^^, thanks to everyone for collaborating and posting in this thread! if you find more keep posting!

SeeYaa!
 :D

I tried my suggestion but it didn't fix the issue :( , Im trying to find out what's going on with the template generation.

I even edited this manually to visualize if the menu structure was done well and it seems ok so far...

Code: [Select]
IDR_MENU MENU DISCARDABLE
BEGIN
POPUP "Game"
BEGIN
MENUITEM "Load game...\tF6", MENU_LOAD
MENUITEM "Load NeoGeo MVS Cartridges...", MENU_MVS_LOAD, GRAYED
MENUITEM "Play via Kaillera...\tCtrl+F6", MENU_STARTNET
POPUP "Most recent games..."
BEGIN
MENUITEM "no game selected", MENU_PREVIOUSGAMES1, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES2, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES3, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES4, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES5, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES6, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES7, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES8, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES9, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES10, GRAYED
END
MENUITEM SEPARATOR
MENUITEM "View Game Info...\tCtrl+Shift+F4", MENU_VIEWGAMEINFO, GRAYED
MENUITEM SEPARATOR
MENUITEM "Exit game\tCtrl+F4", MENU_QUIT, GRAYED
MENUITEM "Pause game\tPause", MENU_PAUSE, GRAYED
MENUITEM SEPARATOR
MENUITEM "MENU_SETCPUCLOCK", MENU_SETCPUCLOCK, GRAYED
MENUITEM "Reset CPU speed to 100%", MENU_RESETCPUCLOCK, GRAYED
MENUITEM SEPARATOR
POPUP "Memory Card..."
BEGIN
MENUITEM "Create new memory card...\tCtrl+Shift+F7", MENU_MEMCARD_CREATE
MENUITEM "Select memory card...\tCtrl+F7", MENU_MEMCARD_SELECT
MENUITEM "Insert memory card\tF7", MENU_MEMCARD_INSERT
MENUITEM "Eject memory card\tF7", MENU_MEMCARD_EJECT
END
MENUITEM SEPARATOR
POPUP "Replay..."
BEGIN
MENUITEM "Replay input...", MENU_STARTREPLAY, GRAYED
MENUITEM "Record input...", MENU_STARTRECORD, GRAYED
MENUITEM "Stop replay/record", MENU_STOPREPLAY, GRAYED
END
MENUITEM SEPARATOR
POPUP "Save states..."
BEGIN
MENUITEM "Load state...\tCtrl+F9", MENU_STATE_LOAD_DIALOG, GRAYED
MENUITEM "Save state...\tCtrl+F10", MENU_STATE_SAVE_DIALOG, GRAYED
POPUP "State slots..."
BEGIN
MENUITEM "Activate previous slot\tF8", MENU_STATE_PREVSLOT
MENUITEM "Activate next slot\tF11", MENU_STATE_NEXTSLOT
MENUITEM "MENU_STATE_LOAD_SLOT", MENU_STATE_LOAD_SLOT, GRAYED
MENUITEM "MENU_STATE_SAVE_SLOT", MENU_STATE_SAVE_SLOT, GRAYED
END
MENUITEM "Restore full state on load", MENU_ALLRAM
END
MENUITEM SEPARATOR
MENUITEM "Exit emulator\tAlt+F4", MENU_EXIT
END
POPUP "Video"
BEGIN
POPUP "&Select blitter"
BEGIN
MENUITEM "Basic\t(DirectDraw 7)", MENU_BLITTER_1
MENUITEM "SoftFX\t(DirectDraw 7)", MENU_BLITTER_3
MENUITEM "Enhanced\t(Direct3D 7)", MENU_BLITTER_2
MENUITEM "Experimental\t(DirectX Graphics 9)", MENU_BLITTER_4
END
MENUITEM "&Blitter options", MENU_BLITTEROPTIONS, GRAYED
POPUP "&Stretch"
BEGIN
MENUITEM "&Normal stretch", MENU_NOSTRETCH
MENUITEM "&Full stretch", MENU_STRETCH
MENUITEM "Correct &aspect ratio", MENU_ASPECT
END
MENUITEM SEPARATOR
MENUITEM "&Enable gamma correction", MENU_GAMMA_DO
POPUP "&Gamma correction settings"
BEGIN
MENUITEM "&Darken midtones\t(1.25)", MENU_GAMMA_DARKER
MENUITEM "&Lighten midtones\t(0.80)", MENU_GAMMA_LIGHTER
MENUITEM "MENU_GAMMA_OTHER", MENU_GAMMA_OTHER
MENUITEM SEPARATOR
MENUITEM "Use video &hardware when possible", MENU_GAMMA_USE_HARDWARE
MENUITEM "Use video hardware &exclusively", MENU_GAMMA_HARDWARE_ONLY
MENUITEM "Use &software exclusively", MENU_GAMMA_SOFTWARE_ONLY
END
MENUITEM SEPARATOR
POPUP "&Window size"
BEGIN
MENUITEM "&Auto", MENU_AUTOSIZE
MENUITEM SEPARATOR
MENUITEM "&Single size", MENU_SINGLESIZEWINDOW
MENUITEM "&Double size", MENU_DOUBLESIZEWINDOW
MENUITEM "&Triple size", MENU_TRIPLESIZEWINDOW
MENUITEM "&Quadruple size", MENU_QUADSIZEWINDOW
MENUITEM "&Maximum size", MENU_MAXIMUMSIZEWINDOW
END
MENUITEM SEPARATOR
MENUITEM "Toggle &fullscreen mode\tAlt+Enter", MENU_FULL
MENUITEM "Auto Switch to Fullscreen after loading", MENU_AUTOSWITCHFULL
POPUP "Fullscreen Resolution (Horizontal)"
BEGIN
MENUITEM "MENU_RES_ARCADE", MENU_RES_ARCADE
MENUITEM SEPARATOR
MENUITEM "&Single size", MENU_SINGLESIZESCREEN
MENUITEM "&Double size", MENU_DOUBLESIZESCREEN
MENUITEM "&Triple size", MENU_TRIPLESIZESCREEN
MENUITEM "&Quadruple size", MENU_QUADSIZESCREEN
MENUITEM SEPARATOR
MENUITEM "MENU_RES_1", MENU_RES_1
MENUITEM "MENU_RES_2", MENU_RES_2
MENUITEM "MENU_RES_3", MENU_RES_3
MENUITEM "MENU_RES_4", MENU_RES_4
MENUITEM SEPARATOR
MENUITEM "MENU_RES_OTHER", MENU_RES_OTHER
END
POPUP "Fullscreen Resolution (Vertical)"
BEGIN
MENUITEM "MENU_RES_ARCADE_VERTICAL", MENU_RES_ARCADE_VERTICAL
MENUITEM SEPARATOR
MENUITEM "&Single size", MENU_SINGLESIZESCREEN_VERTICAL
MENUITEM "&Double size", MENU_DOUBLESIZESCREEN_VERTICAL
MENUITEM "&Triple size", MENU_TRIPLESIZESCREEN_VERTICAL
MENUITEM "&Quadruple size", MENU_QUADSIZESCREEN_VERTICAL
MENUITEM SEPARATOR
MENUITEM "MENU_RES_1_VERTICAL", MENU_RES_1_VERTICAL
MENUITEM "MENU_RES_2_VERTICAL", MENU_RES_2_VERTICAL
MENUITEM "MENU_RES_3_VERTICAL", MENU_RES_3_VERTICAL
MENUITEM "MENU_RES_4_VERTICAL", MENU_RES_4_VERTICAL
MENUITEM SEPARATOR
MENUITEM "MENU_RES_OTHER_VERTICAL", MENU_RES_OTHER_VERTICAL
END
POPUP "Fullscreen bit&depth"
BEGIN
MENUITEM "&16bit", MENU_16
MENUITEM "&24bit", MENU_24
MENUITEM "&32bit", MENU_32
END
MENUITEM SEPARATOR
POPUP "&Monitor properties"
BEGIN
MENUITEM "Automatically detect aspect ratio", MENU_MONITORAUTOCHECK
MENUITEM SEPARATOR
MENUITEM "Normal CRT aspect ratio\t(4:3)", MENU_ASPECTNORMAL
MENUITEM "Normal LCD aspect ratio\t(5:4)", MENU_ASPECTLCD
MENUITEM "Widescreen CRT aspect ratio\t(16:9)", MENU_ASPECTWIDE
MENUITEM "Widescreen LCD aspect ratio\t(16:10)", MENU_ASPECTWIDELCD
MENUITEM SEPARATOR
MENUITEM "Mirrored vertical alignment", MENU_MONITORMIRRORVERT
END
MENUITEM SEPARATOR
MENUITEM "&Rotate vertically aligned games", MENU_ROTATEVERTICAL
MENUITEM "Use &triple buffering", MENU_TRIPLE
MENUITEM "Force 60Hz refresh rate", MENU_FORCE60HZ
MENUITEM "Enable VSync", MENU_VIDEOVSYNC
MENUITEM "Auto Frameskip", MENU_AUTOFRAMESKIP
MENUITEM SEPARATOR
MENUITEM "Preview blitter", MENU_BLITTERPREVIEW
END
POPUP "Audio"
BEGIN
POPUP "Select &plugin"
BEGIN
MENUITEM "DirectSound", MENU_AUD_PLUGIN_1
MENUITEM "XAudio2", MENU_AUD_PLUGIN_2
END
MENUITEM "Plugin &options", MENU_AUDIO_OPTIONS, GRAYED
MENUITEM SEPARATOR
MENUITEM "2-point 1st order sample interpolation", MENU_INTERPOLATE_1
MENUITEM "4-point 3rd order sample interpolation", MENU_INTERPOLATE_3
MENUITEM SEPARATOR
MENUITEM "Disable FM interpolation", MENU_INTERPOLATE_FM_0
MENUITEM "4-point 3rd order FM interpolation", MENU_INTERPOLATE_FM_3
MENUITEM SEPARATOR
POPUP "&Sound logging"
BEGIN
MENUITEM "Log to file...", MENU_WLOGSTART, GRAYED
MENUITEM "Stop logging", MENU_WLOGEND, GRAYED
END
MENUITEM "Buffer size...", MENU_FRAMES
MENUITEM SEPARATOR
MENUITEM "Show FB Alpha Jukebox", MENU_TRACKLIST
END
POPUP "Input"
BEGIN
POPUP "Select &plugin"
BEGIN
MENUITEM "DirectInput", MENU_INP_PLUGIN_1, GRAYED
END
MENUITEM SEPARATOR
MENUITEM "Map game inputs...\tF5", MENU_INPUT, GRAYED
MENUITEM "Set dipswitches...\tCtrl+F5", MENU_DIPSW, GRAYED
END
POPUP "Misc"
BEGIN
POPUP "Options"
BEGIN
MENUITEM "Auto pause", MENU_AUTOPAUSE
MENUITEM "Always process keyboard input", MENU_PROCESSINPUT, GRAYED
MENUITEM "Display mode indicator", MENU_DISPLAYINDICATOR
MENUITEM "Modeless menu", MENU_MODELESS
MENUITEM "Don't change Num Lock status", MENU_NOCHANGENUMLOCK
MENUITEM SEPARATOR
POPUP "Set application thread priority"
BEGIN
//MENUITEM "Realtime", MENU_PRIORITY_REALTIME
MENUITEM "High", MENU_PRIORITY_HIGH
MENUITEM "Above normal", MENU_PRIORITY_ABOVE_NORMAL
MENUITEM "Normal", MENU_PRIORITY_NORMAL
MENUITEM "Below normal", MENU_PRIORITY_BELOW_NORMAL
MENUITEM "Low", MENU_PRIORITY_LOW
END
MENUITEM SEPARATOR
MENUITEM "Save Neo-Geo 'C' Roms", MENU_SAVECROMS
MENUITEM SEPARATOR
MENUITEM "Use assembly MC68000 core", MENU_ASSEMBLYCORE
MENUITEM SEPARATOR
MENUITEM "Save High Scores when supported", MENU_SAVEHISCORES
END
MENUITEM SEPARATOR
POPUP    "Generate dat file"
BEGIN
POPUP "XML ClrMame Pro format"
BEGIN
MENUITEM "Generate dat...", MENU_CLRMAME_PRO_XML
MENUITEM "Generate dat (including Megadrive)...", MENU_CLRMAME_PRO_XML_INC_MD
MENUITEM "Generate dat (Megadrive only)...", MENU_CLRMAME_PRO_XML_MD_ONLY
END
POPUP "Old ClrMame Pro format"
BEGIN
MENUITEM "Generate dat...", MENU_CLRMAME_PRO
MENUITEM "Generate dat (including Megadrive)...", MENU_CLRMAME_PRO_INC_MD
MENUITEM "Generate dat (Megadrive only)...", MENU_CLRMAME_PRO_MD_ONLY
END
POPUP "Old RomCenter format"
BEGIN
MENUITEM "Generate dat...", MENU_ROMCENTER
MENUITEM "Generate dat (including Megadrive)...", MENU_ROMCENTER_INC_MD
    MENUITEM "Generate dat (Megadrive only)...", MENU_ROMCENTER_MD_ONLY
END
END
MENUITEM SEPARATOR
MENUITEM "Configure ROM paths...", MENU_ROMDIRS
MENUITEM "Configure support file paths...", MENU_SUPPORTDIRS
MENUITEM SEPARATOR
POPUP "FBA package importer"
BEGIN
MENUITEM "Import MAME previews...", MENU_IMPORT_PREVIEWS
MENUITEM "Import MAME titles...", MENU_IMPORT_TITLES
MENUITEM "Import MAME flyers...", MENU_IMPORT_FLYERS
MENUITEM "Import MAME cabinets...", MENU_IMPORT_CABINETS
MENUITEM "Import MAME marquees...", MENU_IMPORT_MARQUEES
MENUITEM "Import MAME control panels...", MENU_IMPORT_CPANELS
MENUITEM "Import MAME PCBs...", MENU_IMPORT_PCBS
MENUITEM "Import MAME Icons...", MENU_IMPORT_ICONS
MENUITEM "Import MAME ROMs...", MENU_IMPORT_ROMS
MENUITEM "Import M1 Tracklists...", MENU_IMPORT_TRACKLISTS
END
MENUITEM SEPARATOR
POPUP    "UI Options"
BEGIN
MENUITEM "Change Menubar background image...", MENU_SELECT_MENUBG
MENUITEM "Reset Menubar background image", MENU_RESET_MENUBG
POPUP    "Set Menu Theme"
BEGIN
MENUITEM "Disable menu themes", MENU_DISABLETHEMES
MENUITEM SEPARATOR
MENUITEM "Default menu theme", MENU_DEFAULTTHEME
MENUITEM "Gray menu theme", MENU_GRAYTHEME
MENUITEM "Office menu theme", MENU_OFFICETHEME
MENUITEM "Office 2003 menu theme", MENU_OFFICE2003THEME
MENUITEM "Office 2007 menu theme", MENU_OFFICE2007THEME
MENUITEM "Visual Studio EX menu theme", MENU_VISSTUDIOEXTHEME       
END
MENUITEM SEPARATOR
POPUP    "UI skin"
BEGIN
MENUITEM "Select skin...", MENU_SELECTPLACEHOLDER
MENUITEM "Set skin to default", MENU_DISABLEPLACEHOLDER
END
MENUITEM SEPARATOR
POPUP    "UI language"
BEGIN
MENUITEM "Select UI language...", MENU_LANGUAGE_SELECT
MENUITEM "Export UI translation template...", MENU_LANGUAGE_EXPORT
MENUITEM "Reset UI default language", MENU_LANGUAGE_RESET
END
MENUITEM SEPARATOR
POPUP    "Gamelist language"
BEGIN
MENUITEM "Select gamelist language...", MENU_GAMELANG_SELECT
MENUITEM "Export gamelist translation template...", MENU_GAMELANG_EXPORT
MENUITEM "Reset gamelist default language", MENU_GAMELANG_RESET
END
MENUITEM SEPARATOR
POPUP    "Support files \t(previews, titles, icons, etc)"
BEGIN
MENUITEM "Enable driver Icons display", MENU_ENABLEICONS
POPUP "Set Icons display size"
BEGIN
MENUITEM "16 x 16 pixels", MENU_ICONS_SIZE_16
MENUITEM "24 x 24 pixels", MENU_ICONS_SIZE_24
MENUITEM "32 x 32 pixels", MENU_ICONS_SIZE_32
END
END
END
MENUITEM SEPARATOR
MENUITEM "Save snapshot\tF12", MENU_SAVESNAP
MENUITEM "Shot factory..\tCtrl+F12", MENU_SNAPFACT
MENUITEM SEPARATOR
MENUITEM "Enable cheats...\tCtrl+F1", MENU_ENABLECHEAT, GRAYED
POPUP "Cheat search"
BEGIN
MENUITEM "Start New Search\tCtrl+Home", MENU_CHEATSEARCH_START, GRAYED
MENUITEM SEPARATOR
MENUITEM "Target value has not changed\tCtrl+/", MENU_CHEATSEARCH_NOCHANGE, GRAYED
MENUITEM "Target value has changed\tCtrl+*", MENU_CHEATSEARCH_CHANGE, GRAYED
MENUITEM "Target value has decreased\tCtrl+-", MENU_CHEATSEARCH_DECREASE, GRAYED
MENUITEM "Target value has increased\tCtrl++", MENU_CHEATSEARCH_INCREASE, GRAYED
MENUITEM SEPARATOR
MENUITEM "Dump search to file", MENU_CHEATSEARCH_DUMPFILE, GRAYED
MENUITEM SEPARATOR
MENUITEM "Exit Cheat Search", MENU_CHEATSEARCH_EXIT, GRAYED
END
MENUITEM SEPARATOR
MENUITEM "Invoke debugger...\tCtrl+Shift+F1", MENU_DEBUG
MENUITEM SEPARATOR
MENUITEM "Palette Viewer...\tCtrl+Shift+F5", MENU_PALETTEVIEWER, GRAYED
MENUITEM SEPARATOR
MENUITEM "Associate with .fs and .fr files", MENU_ASSOCIATE
MENUITEM "Disassociate from .fs and .fr files", MENU_DISASSOCIATE
MENUITEM SEPARATOR
MENUITEM "Save input mapping now", MENU_SAVEGAMEINPUTNOW
MENUITEM "Auto-save input mapping", MENU_SAVEGAMEINPUT
MENUITEM SEPARATOR
MENUITEM "Save settings to .ini now", MENU_SAVESET
MENUITEM "Reload settings from .ini", MENU_LOADSET
END
POPUP "Help"
BEGIN
MENUITEM "&Help", MENU_CONTENTS
MENUITEM SEPARATOR
MENUITEM "&What's New", MENU_WHATSNEW
MENUITEM SEPARATOR
MENUITEM "&FB Alpha homepage", MENU_WWW_HOME
MENUITEM "FB Alpha &forums", MENU_WWW_FORUM
MENUITEM "&Neo-Source forums", MENU_WWW_NSFORUM
MENUITEM SEPARATOR
MENUITEM "&System information", MENU_SYSINFO
MENUITEM "&About FB Alpha", MENU_ABOUT
END
END

SeeYaa!
 :biggrin:

Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #22 on: March 13, 2010, 01:50:14 PM »
I tried my suggestion but it didn't fix the issue :( , Im trying to find out what's going on with the template generation.

I even edited this manually to visualize if the menu structure was done well and it seems ok so far...

Code: [Select]
IDR_MENU MENU DISCARDABLE
BEGIN
POPUP "Game"
BEGIN
MENUITEM "Load game...\tF6", MENU_LOAD
MENUITEM "Load NeoGeo MVS Cartridges...", MENU_MVS_LOAD, GRAYED
MENUITEM "Play via Kaillera...\tCtrl+F6", MENU_STARTNET
POPUP "Most recent games..."
BEGIN
MENUITEM "no game selected", MENU_PREVIOUSGAMES1, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES2, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES3, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES4, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES5, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES6, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES7, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES8, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES9, GRAYED
MENUITEM "no game selected", MENU_PREVIOUSGAMES10, GRAYED
END
MENUITEM SEPARATOR
MENUITEM "View Game Info...\tCtrl+Shift+F4", MENU_VIEWGAMEINFO, GRAYED
MENUITEM SEPARATOR
MENUITEM "Exit game\tCtrl+F4", MENU_QUIT, GRAYED
MENUITEM "Pause game\tPause", MENU_PAUSE, GRAYED
MENUITEM SEPARATOR
MENUITEM "MENU_SETCPUCLOCK", MENU_SETCPUCLOCK, GRAYED
MENUITEM "Reset CPU speed to 100%", MENU_RESETCPUCLOCK, GRAYED
MENUITEM SEPARATOR
POPUP "Memory Card..."
BEGIN
MENUITEM "Create new memory card...\tCtrl+Shift+F7", MENU_MEMCARD_CREATE
MENUITEM "Select memory card...\tCtrl+F7", MENU_MEMCARD_SELECT
MENUITEM "Insert memory card\tF7", MENU_MEMCARD_INSERT
MENUITEM "Eject memory card\tF7", MENU_MEMCARD_EJECT
END
MENUITEM SEPARATOR
POPUP "Replay..."
BEGIN
MENUITEM "Replay input...", MENU_STARTREPLAY, GRAYED
MENUITEM "Record input...", MENU_STARTRECORD, GRAYED
MENUITEM "Stop replay/record", MENU_STOPREPLAY, GRAYED
END
MENUITEM SEPARATOR
POPUP "Save states..."
BEGIN
MENUITEM "Load state...\tCtrl+F9", MENU_STATE_LOAD_DIALOG, GRAYED
MENUITEM "Save state...\tCtrl+F10", MENU_STATE_SAVE_DIALOG, GRAYED
POPUP "State slots..."
BEGIN
MENUITEM "Activate previous slot\tF8", MENU_STATE_PREVSLOT
MENUITEM "Activate next slot\tF11", MENU_STATE_NEXTSLOT
MENUITEM "MENU_STATE_LOAD_SLOT", MENU_STATE_LOAD_SLOT, GRAYED
MENUITEM "MENU_STATE_SAVE_SLOT", MENU_STATE_SAVE_SLOT, GRAYED
END
MENUITEM "Restore full state on load", MENU_ALLRAM
END
MENUITEM SEPARATOR
MENUITEM "Exit emulator\tAlt+F4", MENU_EXIT
END
POPUP "Video"
BEGIN
POPUP "&Select blitter"
BEGIN
MENUITEM "Basic\t(DirectDraw 7)", MENU_BLITTER_1
MENUITEM "SoftFX\t(DirectDraw 7)", MENU_BLITTER_3
MENUITEM "Enhanced\t(Direct3D 7)", MENU_BLITTER_2
MENUITEM "Experimental\t(DirectX Graphics 9)", MENU_BLITTER_4
END
MENUITEM "&Blitter options", MENU_BLITTEROPTIONS, GRAYED
POPUP "&Stretch"
BEGIN
MENUITEM "&Normal stretch", MENU_NOSTRETCH
MENUITEM "&Full stretch", MENU_STRETCH
MENUITEM "Correct &aspect ratio", MENU_ASPECT
END
MENUITEM SEPARATOR
MENUITEM "&Enable gamma correction", MENU_GAMMA_DO
POPUP "&Gamma correction settings"
BEGIN
MENUITEM "&Darken midtones\t(1.25)", MENU_GAMMA_DARKER
MENUITEM "&Lighten midtones\t(0.80)", MENU_GAMMA_LIGHTER
MENUITEM "MENU_GAMMA_OTHER", MENU_GAMMA_OTHER
MENUITEM SEPARATOR
MENUITEM "Use video &hardware when possible", MENU_GAMMA_USE_HARDWARE
MENUITEM "Use video hardware &exclusively", MENU_GAMMA_HARDWARE_ONLY
MENUITEM "Use &software exclusively", MENU_GAMMA_SOFTWARE_ONLY
END
MENUITEM SEPARATOR
POPUP "&Window size"
BEGIN
MENUITEM "&Auto", MENU_AUTOSIZE
MENUITEM SEPARATOR
MENUITEM "&Single size", MENU_SINGLESIZEWINDOW
MENUITEM "&Double size", MENU_DOUBLESIZEWINDOW
MENUITEM "&Triple size", MENU_TRIPLESIZEWINDOW
MENUITEM "&Quadruple size", MENU_QUADSIZEWINDOW
MENUITEM "&Maximum size", MENU_MAXIMUMSIZEWINDOW
END
MENUITEM SEPARATOR
MENUITEM "Toggle &fullscreen mode\tAlt+Enter", MENU_FULL
MENUITEM "Auto Switch to Fullscreen after loading", MENU_AUTOSWITCHFULL
POPUP "Fullscreen Resolution (Horizontal)"
BEGIN
MENUITEM "MENU_RES_ARCADE", MENU_RES_ARCADE
MENUITEM SEPARATOR
MENUITEM "&Single size", MENU_SINGLESIZESCREEN
MENUITEM "&Double size", MENU_DOUBLESIZESCREEN
MENUITEM "&Triple size", MENU_TRIPLESIZESCREEN
MENUITEM "&Quadruple size", MENU_QUADSIZESCREEN
MENUITEM SEPARATOR
MENUITEM "MENU_RES_1", MENU_RES_1
MENUITEM "MENU_RES_2", MENU_RES_2
MENUITEM "MENU_RES_3", MENU_RES_3
MENUITEM "MENU_RES_4", MENU_RES_4
MENUITEM SEPARATOR
MENUITEM "MENU_RES_OTHER", MENU_RES_OTHER
END
POPUP "Fullscreen Resolution (Vertical)"
BEGIN
MENUITEM "MENU_RES_ARCADE_VERTICAL", MENU_RES_ARCADE_VERTICAL
MENUITEM SEPARATOR
MENUITEM "&Single size", MENU_SINGLESIZESCREEN_VERTICAL
MENUITEM "&Double size", MENU_DOUBLESIZESCREEN_VERTICAL
MENUITEM "&Triple size", MENU_TRIPLESIZESCREEN_VERTICAL
MENUITEM "&Quadruple size", MENU_QUADSIZESCREEN_VERTICAL
MENUITEM SEPARATOR
MENUITEM "MENU_RES_1_VERTICAL", MENU_RES_1_VERTICAL
MENUITEM "MENU_RES_2_VERTICAL", MENU_RES_2_VERTICAL
MENUITEM "MENU_RES_3_VERTICAL", MENU_RES_3_VERTICAL
MENUITEM "MENU_RES_4_VERTICAL", MENU_RES_4_VERTICAL
MENUITEM SEPARATOR
MENUITEM "MENU_RES_OTHER_VERTICAL", MENU_RES_OTHER_VERTICAL
END
POPUP "Fullscreen bit&depth"
BEGIN
MENUITEM "&16bit", MENU_16
MENUITEM "&24bit", MENU_24
MENUITEM "&32bit", MENU_32
END
MENUITEM SEPARATOR
POPUP "&Monitor properties"
BEGIN
MENUITEM "Automatically detect aspect ratio", MENU_MONITORAUTOCHECK
MENUITEM SEPARATOR
MENUITEM "Normal CRT aspect ratio\t(4:3)", MENU_ASPECTNORMAL
MENUITEM "Normal LCD aspect ratio\t(5:4)", MENU_ASPECTLCD
MENUITEM "Widescreen CRT aspect ratio\t(16:9)", MENU_ASPECTWIDE
MENUITEM "Widescreen LCD aspect ratio\t(16:10)", MENU_ASPECTWIDELCD
MENUITEM SEPARATOR
MENUITEM "Mirrored vertical alignment", MENU_MONITORMIRRORVERT
END
MENUITEM SEPARATOR
MENUITEM "&Rotate vertically aligned games", MENU_ROTATEVERTICAL
MENUITEM "Use &triple buffering", MENU_TRIPLE
MENUITEM "Force 60Hz refresh rate", MENU_FORCE60HZ
MENUITEM "Enable VSync", MENU_VIDEOVSYNC
MENUITEM "Auto Frameskip", MENU_AUTOFRAMESKIP
MENUITEM SEPARATOR
MENUITEM "Preview blitter", MENU_BLITTERPREVIEW
END
POPUP "Audio"
BEGIN
POPUP "Select &plugin"
BEGIN
MENUITEM "DirectSound", MENU_AUD_PLUGIN_1
MENUITEM "XAudio2", MENU_AUD_PLUGIN_2
END
MENUITEM "Plugin &options", MENU_AUDIO_OPTIONS, GRAYED
MENUITEM SEPARATOR
MENUITEM "2-point 1st order sample interpolation", MENU_INTERPOLATE_1
MENUITEM "4-point 3rd order sample interpolation", MENU_INTERPOLATE_3
MENUITEM SEPARATOR
MENUITEM "Disable FM interpolation", MENU_INTERPOLATE_FM_0
MENUITEM "4-point 3rd order FM interpolation", MENU_INTERPOLATE_FM_3
MENUITEM SEPARATOR
POPUP "&Sound logging"
BEGIN
MENUITEM "Log to file...", MENU_WLOGSTART, GRAYED
MENUITEM "Stop logging", MENU_WLOGEND, GRAYED
END
MENUITEM "Buffer size...", MENU_FRAMES
MENUITEM SEPARATOR
MENUITEM "Show FB Alpha Jukebox", MENU_TRACKLIST
END
POPUP "Input"
BEGIN
POPUP "Select &plugin"
BEGIN
MENUITEM "DirectInput", MENU_INP_PLUGIN_1, GRAYED
END
MENUITEM SEPARATOR
MENUITEM "Map game inputs...\tF5", MENU_INPUT, GRAYED
MENUITEM "Set dipswitches...\tCtrl+F5", MENU_DIPSW, GRAYED
END
POPUP "Misc"
BEGIN
POPUP "Options"
BEGIN
MENUITEM "Auto pause", MENU_AUTOPAUSE
MENUITEM "Always process keyboard input", MENU_PROCESSINPUT, GRAYED
MENUITEM "Display mode indicator", MENU_DISPLAYINDICATOR
MENUITEM "Modeless menu", MENU_MODELESS
MENUITEM "Don't change Num Lock status", MENU_NOCHANGENUMLOCK
MENUITEM SEPARATOR
POPUP "Set application thread priority"
BEGIN
//MENUITEM "Realtime", MENU_PRIORITY_REALTIME
MENUITEM "High", MENU_PRIORITY_HIGH
MENUITEM "Above normal", MENU_PRIORITY_ABOVE_NORMAL
MENUITEM "Normal", MENU_PRIORITY_NORMAL
MENUITEM "Below normal", MENU_PRIORITY_BELOW_NORMAL
MENUITEM "Low", MENU_PRIORITY_LOW
END
MENUITEM SEPARATOR
MENUITEM "Save Neo-Geo 'C' Roms", MENU_SAVECROMS
MENUITEM SEPARATOR
MENUITEM "Use assembly MC68000 core", MENU_ASSEMBLYCORE
MENUITEM SEPARATOR
MENUITEM "Save High Scores when supported", MENU_SAVEHISCORES
END
MENUITEM SEPARATOR
POPUP    "Generate dat file"
BEGIN
POPUP "XML ClrMame Pro format"
BEGIN
MENUITEM "Generate dat...", MENU_CLRMAME_PRO_XML
MENUITEM "Generate dat (including Megadrive)...", MENU_CLRMAME_PRO_XML_INC_MD
MENUITEM "Generate dat (Megadrive only)...", MENU_CLRMAME_PRO_XML_MD_ONLY
END
POPUP "Old ClrMame Pro format"
BEGIN
MENUITEM "Generate dat...", MENU_CLRMAME_PRO
MENUITEM "Generate dat (including Megadrive)...", MENU_CLRMAME_PRO_INC_MD
MENUITEM "Generate dat (Megadrive only)...", MENU_CLRMAME_PRO_MD_ONLY
END
POPUP "Old RomCenter format"
BEGIN
MENUITEM "Generate dat...", MENU_ROMCENTER
MENUITEM "Generate dat (including Megadrive)...", MENU_ROMCENTER_INC_MD
    MENUITEM "Generate dat (Megadrive only)...", MENU_ROMCENTER_MD_ONLY
END
END
MENUITEM SEPARATOR
MENUITEM "Configure ROM paths...", MENU_ROMDIRS
MENUITEM "Configure support file paths...", MENU_SUPPORTDIRS
MENUITEM SEPARATOR
POPUP "FBA package importer"
BEGIN
MENUITEM "Import MAME previews...", MENU_IMPORT_PREVIEWS
MENUITEM "Import MAME titles...", MENU_IMPORT_TITLES
MENUITEM "Import MAME flyers...", MENU_IMPORT_FLYERS
MENUITEM "Import MAME cabinets...", MENU_IMPORT_CABINETS
MENUITEM "Import MAME marquees...", MENU_IMPORT_MARQUEES
MENUITEM "Import MAME control panels...", MENU_IMPORT_CPANELS
MENUITEM "Import MAME PCBs...", MENU_IMPORT_PCBS
MENUITEM "Import MAME Icons...", MENU_IMPORT_ICONS
MENUITEM "Import MAME ROMs...", MENU_IMPORT_ROMS
MENUITEM "Import M1 Tracklists...", MENU_IMPORT_TRACKLISTS
END
MENUITEM SEPARATOR
POPUP    "UI Options"
BEGIN
MENUITEM "Change Menubar background image...", MENU_SELECT_MENUBG
MENUITEM "Reset Menubar background image", MENU_RESET_MENUBG
POPUP    "Set Menu Theme"
BEGIN
MENUITEM "Disable menu themes", MENU_DISABLETHEMES
MENUITEM SEPARATOR
MENUITEM "Default menu theme", MENU_DEFAULTTHEME
MENUITEM "Gray menu theme", MENU_GRAYTHEME
MENUITEM "Office menu theme", MENU_OFFICETHEME
MENUITEM "Office 2003 menu theme", MENU_OFFICE2003THEME
MENUITEM "Office 2007 menu theme", MENU_OFFICE2007THEME
MENUITEM "Visual Studio EX menu theme", MENU_VISSTUDIOEXTHEME       
END
MENUITEM SEPARATOR
POPUP    "UI skin"
BEGIN
MENUITEM "Select skin...", MENU_SELECTPLACEHOLDER
MENUITEM "Set skin to default", MENU_DISABLEPLACEHOLDER
END
MENUITEM SEPARATOR
POPUP    "UI language"
BEGIN
MENUITEM "Select UI language...", MENU_LANGUAGE_SELECT
MENUITEM "Export UI translation template...", MENU_LANGUAGE_EXPORT
MENUITEM "Reset UI default language", MENU_LANGUAGE_RESET
END
MENUITEM SEPARATOR
POPUP    "Gamelist language"
BEGIN
MENUITEM "Select gamelist language...", MENU_GAMELANG_SELECT
MENUITEM "Export gamelist translation template...", MENU_GAMELANG_EXPORT
MENUITEM "Reset gamelist default language", MENU_GAMELANG_RESET
END
MENUITEM SEPARATOR
POPUP    "Support files \t(previews, titles, icons, etc)"
BEGIN
MENUITEM "Enable driver Icons display", MENU_ENABLEICONS
POPUP "Set Icons display size"
BEGIN
MENUITEM "16 x 16 pixels", MENU_ICONS_SIZE_16
MENUITEM "24 x 24 pixels", MENU_ICONS_SIZE_24
MENUITEM "32 x 32 pixels", MENU_ICONS_SIZE_32
END
END
END
MENUITEM SEPARATOR
MENUITEM "Save snapshot\tF12", MENU_SAVESNAP
MENUITEM "Shot factory..\tCtrl+F12", MENU_SNAPFACT
MENUITEM SEPARATOR
MENUITEM "Enable cheats...\tCtrl+F1", MENU_ENABLECHEAT, GRAYED
POPUP "Cheat search"
BEGIN
MENUITEM "Start New Search\tCtrl+Home", MENU_CHEATSEARCH_START, GRAYED
MENUITEM SEPARATOR
MENUITEM "Target value has not changed\tCtrl+/", MENU_CHEATSEARCH_NOCHANGE, GRAYED
MENUITEM "Target value has changed\tCtrl+*", MENU_CHEATSEARCH_CHANGE, GRAYED
MENUITEM "Target value has decreased\tCtrl+-", MENU_CHEATSEARCH_DECREASE, GRAYED
MENUITEM "Target value has increased\tCtrl++", MENU_CHEATSEARCH_INCREASE, GRAYED
MENUITEM SEPARATOR
MENUITEM "Dump search to file", MENU_CHEATSEARCH_DUMPFILE, GRAYED
MENUITEM SEPARATOR
MENUITEM "Exit Cheat Search", MENU_CHEATSEARCH_EXIT, GRAYED
END
MENUITEM SEPARATOR
MENUITEM "Invoke debugger...\tCtrl+Shift+F1", MENU_DEBUG
MENUITEM SEPARATOR
MENUITEM "Palette Viewer...\tCtrl+Shift+F5", MENU_PALETTEVIEWER, GRAYED
MENUITEM SEPARATOR
MENUITEM "Associate with .fs and .fr files", MENU_ASSOCIATE
MENUITEM "Disassociate from .fs and .fr files", MENU_DISASSOCIATE
MENUITEM SEPARATOR
MENUITEM "Save input mapping now", MENU_SAVEGAMEINPUTNOW
MENUITEM "Auto-save input mapping", MENU_SAVEGAMEINPUT
MENUITEM SEPARATOR
MENUITEM "Save settings to .ini now", MENU_SAVESET
MENUITEM "Reload settings from .ini", MENU_LOADSET
END
POPUP "Help"
BEGIN
MENUITEM "&Help", MENU_CONTENTS
MENUITEM SEPARATOR
MENUITEM "&What's New", MENU_WHATSNEW
MENUITEM SEPARATOR
MENUITEM "&FB Alpha homepage", MENU_WWW_HOME
MENUITEM "FB Alpha &forums", MENU_WWW_FORUM
MENUITEM "&Neo-Source forums", MENU_WWW_NSFORUM
MENUITEM SEPARATOR
MENUITEM "&System information", MENU_SYSINFO
MENUITEM "&About FB Alpha", MENU_ABOUT
END
END

SeeYaa!
 :biggrin:

It's definitely ok or windres would have a heart-attack! :)
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.

Offline CaptainCPS

  • FBNeo Dev
  • ******
  • Posts: 1513
  • Karma: +127/-0
  • FB Alpha Team
    • CaptainCPS's Home
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #23 on: March 13, 2010, 02:14:09 PM »
It's definitely ok or windres would have a heart-attack! :)

LOL! I bet! xD, I just wanted to make sure :p, btw I been looking at "BuildTemplateMenuTemplate" function in localize.cpp and probably it doesn't handle multiple POPUP like we see in the Misc menu, there are lot of nested (don't know if this is the proper term in english) POPUP's in there, and when I take a look at the generated template it looks like the problem starts here:

Code: [Select]
          //-- "Generate dat file"
    popup  174 "" {

It never close that until the end, and there is another one that doesn't close brackets with multiple POPUP's as well (nested)...

Code: [Select]
            //-- "UI Options"
      popup  203 "" {

SeeYaa!
 :biggrin:

Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #24 on: March 13, 2010, 02:20:00 PM »
GFX Bug in Air Buster: Trouble Specialty Raid Unit:
Missing some gfxs


Fixed. :)
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.

Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #25 on: March 13, 2010, 02:22:07 PM »
LOL! I bet! xD, I just wanted to make sure :p, btw I been looking at "BuildTemplateMenuTemplate" function in localize.cpp and probably it doesn't handle multiple POPUP like we see in the Misc menu, there are lot of nested (don't know if this is the proper term in english) POPUP's in there, and when I take a look at the generated template it looks like the problem starts here:

Code: [Select]
          //-- "Generate dat file"
    popup  174 "" {

It never close that until the end, and there is another one that doesn't close brackets with multiple POPUP's as well (nested)...

Code: [Select]
            //-- "UI Options"
      popup  203 "" {

SeeYaa!
 :biggrin:

It handles them - that's what the bracketcnt variable does. If you take that out then the function stops after parsing the dat file stuff - ie, the first nested popup. It might not handle them perfectly though. :)
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.

Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #26 on: March 13, 2010, 04:01:31 PM »
Some GFXs bugs in ペンギン ブラザーズ (Japan) ◦ Penguin Brothers (Newer Seta Hardware)
v0.2.97.07 / v0.2.97.08

Work fine in v0.2.97.06


Fixed. :)
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.

Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #27 on: March 13, 2010, 04:03:25 PM »
LOL! I bet! xD, I just wanted to make sure :p,

Just comment an END and compile and windres will complain. Not tried in VC but I imagine that would bork too. :)
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.

Offline CaptainCPS

  • FBNeo Dev
  • ******
  • Posts: 1513
  • Karma: +127/-0
  • FB Alpha Team
    • CaptainCPS's Home
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #28 on: March 17, 2010, 07:04:29 AM »
Here you have the fix I mentioned a couple of days ago for my new FBA Driverlist Generator (C/C++) [thanks to IQ_132]. It is not a proper final fix, it just disables some verification routines so you don't have to be deleting anything at the generated directory or deleting the object directory.

As I said then, the problems regarding the generator should be fixed for next FBA release  :smilie:. I have been busy with university and I haven't been able to sit and check the code.

SeeYaa!
 :biggrin:

Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: FB Alpha 0.2.97.08 Bugs Reports
« Reply #29 on: March 17, 2010, 02:24:46 PM »
The sound is very fast in powerins :p

Fixed the sound in Power Instinct. Needed plenty of fixes - it was a very broken driver! :)
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.