mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 14:42:33 +01:00
byuu says: Changelog (since the last open beta): - icarus is now included. icarus is used to import game files/archives into game paks (folders) - SNES: mid-scanline BGMODE changes now emulated correctly (used only by atx2.smc Anthrox Demo) - GBA: fixed a CPU bug that was causing dozens of games to have distorted audio - GBA: fixed default FlashROM ID; should allow much higher compatibility - GBA: now using Cydrak's new, much improved, GBA color emulation filter (still a work-in-progress) - re-added command-line loading support for game paks (not for game files/archives, sorry!) - Qt port now compiles and runs again (may be a little buggy; Windows/GTK+ ports preferred) - SNES performance profile now compiles and runs again - much more
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
#include "platform.hpp"
|
|
#include "utility.cpp"
|
|
|
|
#include "font.cpp"
|
|
#include "desktop.cpp"
|
|
#include "monitor.cpp"
|
|
#include "keyboard.cpp"
|
|
#include "mouse.cpp"
|
|
#include "browser-window.cpp"
|
|
#include "message-window.cpp"
|
|
|
|
#include "object.cpp"
|
|
#include "group.cpp"
|
|
|
|
#include "hotkey.cpp"
|
|
#include "timer.cpp"
|
|
#include "window.cpp"
|
|
#include "status-bar.cpp"
|
|
#include "menu-bar.cpp"
|
|
#include "popup-menu.cpp"
|
|
|
|
#include "action/action.cpp"
|
|
#include "action/menu.cpp"
|
|
#include "action/menu-separator.cpp"
|
|
#include "action/menu-item.cpp"
|
|
#include "action/menu-check-item.cpp"
|
|
#include "action/menu-radio-item.cpp"
|
|
|
|
#include "sizable.cpp"
|
|
#include "layout.cpp"
|
|
|
|
#include "widget/widget.cpp"
|
|
#include "widget/button.cpp"
|
|
#include "widget/canvas.cpp"
|
|
#include "widget/check-button.cpp"
|
|
#include "widget/check-label.cpp"
|
|
#include "widget/combo-button.cpp"
|
|
#include "widget/combo-button-item.cpp"
|
|
#include "widget/console.cpp"
|
|
#include "widget/frame.cpp"
|
|
#include "widget/hex-edit.cpp"
|
|
#include "widget/horizontal-scroll-bar.cpp"
|
|
#include "widget/horizontal-slider.cpp"
|
|
#include "widget/icon-view.cpp"
|
|
#include "widget/icon-view-item.cpp"
|
|
#include "widget/label.cpp"
|
|
#include "widget/line-edit.cpp"
|
|
#include "widget/list-view.cpp"
|
|
#include "widget/list-view-header.cpp"
|
|
#include "widget/list-view-column.cpp"
|
|
#include "widget/list-view-item.cpp"
|
|
#include "widget/list-view-cell.cpp"
|
|
#include "widget/progress-bar.cpp"
|
|
#include "widget/radio-button.cpp"
|
|
#include "widget/radio-label.cpp"
|
|
#include "widget/source-edit.cpp"
|
|
#include "widget/tab-frame.cpp"
|
|
#include "widget/tab-frame-item.cpp"
|
|
#include "widget/text-edit.cpp"
|
|
#include "widget/tree-view.cpp"
|
|
#include "widget/tree-view-item.cpp"
|
|
#include "widget/vertical-scroll-bar.cpp"
|
|
#include "widget/vertical-slider.cpp"
|
|
#include "widget/viewport.cpp"
|
|
|
|
#include "application.cpp"
|
|
#include "settings.cpp"
|