[higan] 02/04: Merge tag 'upstream/105'

Tobias Hansen thansen at moszumanska.debian.org
Mon Oct 9 22:23:18 UTC 2017


This is an automated email from the git hooks/post-receive script.

thansen pushed a commit to branch master
in repository higan.

commit 6805a4ab0cda210771f1387de511ebf317daaeee
Merge: 4f85e75 2ec2995
Author: Tobias Hansen <thansen at debian.org>
Date:   Mon Oct 9 21:52:33 2017 +0100

    Merge tag 'upstream/105'
    
    Upstream version 105

 higan/GNUmakefile                                  |   38 +-
 higan/data/higan.ico                               |  Bin 29297 -> 31258 bytes
 higan/data/higan.png                               |  Bin 25530 -> 12872 bytes
 higan/data/{resource.rc => higan.rc}               |    0
 higan/data/higan.svg                               |   84 +
 higan/emulator/emulator.hpp                        |    4 +-
 higan/emulator/interface.hpp                       |   16 +-
 higan/emulator/random.hpp                          |   96 +
 higan/fc/interface/interface.cpp                   |   11 +-
 higan/fc/interface/interface.hpp                   |    2 +-
 higan/gb/interface/interface.cpp                   |   11 +-
 higan/gb/interface/interface.hpp                   |    2 +-
 higan/gba/cpu/cpu.cpp                              |    2 +
 higan/gba/gba.hpp                                  |    4 -
 higan/gba/interface/interface.cpp                  |   17 +-
 higan/gba/interface/interface.hpp                  |    2 +-
 higan/gba/player/player.cpp                        |   23 +
 higan/gba/player/player.hpp                        |   27 +-
 higan/gba/player/serialization.cpp                 |    2 +
 higan/gba/system/system.cpp                        |    1 +
 higan/md/interface/interface.cpp                   |   34 +-
 higan/md/interface/interface.hpp                   |    2 +-
 higan/md/vdp/background.cpp                        |   36 +-
 higan/md/vdp/io.cpp                                |   30 +-
 higan/md/vdp/render.cpp                            |   60 +-
 higan/md/vdp/serialization.cpp                     |   19 +-
 higan/md/vdp/sprite.cpp                            |   65 +-
 higan/md/vdp/vdp.cpp                               |   18 +-
 higan/md/vdp/vdp.hpp                               |   68 +-
 higan/ms/cartridge/cartridge.cpp                   |    2 +-
 higan/ms/interface/game-gear.cpp                   |   11 +-
 higan/ms/interface/interface.hpp                   |    4 +-
 higan/ms/interface/master-system.cpp               |   12 +-
 higan/ms/vdp/background.cpp                        |    2 +
 higan/ms/vdp/vdp.cpp                               |   13 +-
 higan/pce/interface/interface.cpp                  |   11 +-
 higan/pce/interface/interface.hpp                  |    2 +-
 higan/processor/huc6280/huc6280.hpp                |   43 +-
 higan/processor/huc6280/instruction.cpp            |  152 +-
 higan/processor/huc6280/instructions.cpp           |  300 +-
 higan/processor/m68k/disassembler.cpp              |    6 +-
 higan/processor/m68k/effective-address.cpp         |   20 +-
 higan/processor/m68k/instruction.cpp               |    4 +-
 higan/processor/m68k/instructions.cpp              |   18 +-
 higan/processor/m68k/m68k.cpp                      |   10 +-
 higan/processor/m68k/m68k.hpp                      |   12 +-
 higan/processor/mos6502/instruction.cpp            |   20 +-
 higan/processor/mos6502/instructions.cpp           |  140 +-
 higan/processor/mos6502/mos6502.hpp                |   19 +-
 higan/processor/upd96050/instructions.cpp          |  163 +-
 higan/processor/upd96050/serialization.cpp         |   66 +-
 higan/processor/upd96050/upd96050.cpp              |   13 +-
 higan/processor/upd96050/upd96050.hpp              |  108 +-
 higan/processor/wdc65816/instruction.hpp           |   62 +-
 ...nstructions-misc.cpp => instructions-other.cpp} |   42 +-
 higan/processor/wdc65816/instructions-pc.cpp       |   24 +-
 higan/processor/wdc65816/wdc65816.cpp              |    8 +-
 higan/processor/wdc65816/wdc65816.hpp              |   66 +-
 higan/resource/GNUmakefile                         |    4 +
 higan/resource/logo/higan.png                      |  Bin 80706 -> 25128 bytes
 higan/resource/resource.cpp                        | 3307 +++++---------------
 higan/sfc/cartridge/load.cpp                       |    2 +-
 higan/sfc/coprocessor/armdsp/armdsp.cpp            |   14 +-
 higan/sfc/coprocessor/armdsp/armdsp.hpp            |    9 +-
 higan/sfc/coprocessor/sa1/sa1.cpp                  |    4 +-
 higan/sfc/coprocessor/superfx/memory.cpp           |    4 +
 higan/sfc/cpu/cpu.cpp                              |    6 +-
 higan/sfc/cpu/timing.cpp                           |    6 +
 higan/sfc/dsp/dsp.cpp                              |    2 +-
 higan/sfc/interface/interface.cpp                  |   12 +-
 higan/sfc/interface/interface.hpp                  |    2 +-
 higan/sfc/ppu/background/background.cpp            |  183 +-
 higan/sfc/ppu/background/background.hpp            |   63 +-
 higan/sfc/ppu/background/mode7.cpp                 |    4 +-
 higan/sfc/ppu/io.cpp                               |   10 +-
 higan/sfc/ppu/object/object.cpp                    |   12 +-
 higan/sfc/ppu/ppu.cpp                              |   60 +-
 higan/sfc/ppu/screen/screen.cpp                    |   31 +-
 higan/sfc/ppu/serialization.cpp                    |   21 +-
 higan/sfc/ppu/window/window.cpp                    |  104 +-
 higan/sfc/sfc.hpp                                  |    3 +
 higan/sfc/system/random.cpp                        |   14 -
 higan/sfc/system/serialization.cpp                 |    2 +-
 higan/sfc/system/system.cpp                        |    4 +-
 higan/sfc/system/system.hpp                        |   10 -
 higan/target-tomoko/GNUmakefile                    |   12 +-
 higan/target-tomoko/input/hotkeys.cpp              |    2 +-
 higan/target-tomoko/presentation/presentation.cpp  |   15 +-
 higan/target-tomoko/presentation/presentation.hpp  |    1 +
 higan/target-tomoko/program/interface.cpp          |    7 +-
 higan/target-tomoko/program/program.cpp            |   21 +-
 higan/target-tomoko/program/program.hpp            |    4 +
 higan/target-tomoko/program/utility.cpp            |   67 +-
 higan/target-tomoko/settings/audio.cpp             |   43 +-
 higan/target-tomoko/settings/settings.hpp          |    5 +-
 higan/ws/cartridge/cartridge.cpp                   |   10 +-
 higan/ws/cpu/cpu.cpp                               |    2 +-
 higan/ws/cpu/io.cpp                                |   10 +-
 higan/ws/interface/interface.cpp                   |   17 +-
 higan/ws/interface/interface.hpp                   |    2 +-
 higan/ws/interface/wonderswan-color.cpp            |    2 +-
 higan/ws/interface/wonderswan.cpp                  |    2 +-
 higan/ws/memory/memory.cpp                         |    2 +-
 higan/ws/ppu/io.cpp                                |    4 +-
 higan/ws/system/system.hpp                         |    6 +
 higan/ws/ws.hpp                                    |   14 +-
 hiro/GNUmakefile                                   |    2 +-
 hiro/cocoa/application.cpp                         |    8 +-
 hiro/cocoa/font.cpp                                |    2 +-
 hiro/cocoa/monitor.cpp                             |    9 +
 hiro/cocoa/monitor.hpp                             |    1 +
 hiro/core/alignment.cpp                            |   12 +-
 hiro/core/application.cpp                          |   16 +
 hiro/core/core.hpp                                 |  128 +-
 hiro/core/font.cpp                                 |    6 +-
 hiro/core/geometry.cpp                             |   24 +-
 hiro/core/monitor.cpp                              |   10 +-
 hiro/core/position.cpp                             |   12 +-
 hiro/core/shared.hpp                               |    4 +-
 hiro/core/size.cpp                                 |   12 +-
 hiro/core/widget/table-view-column.cpp             |   12 +-
 hiro/extension/fixed-layout.cpp                    |    2 +-
 hiro/extension/fixed-layout.hpp                    |    4 +-
 hiro/extension/horizontal-layout.cpp               |   56 +-
 hiro/extension/horizontal-layout.hpp               |   26 +-
 hiro/extension/vertical-layout.cpp                 |   56 +-
 hiro/extension/vertical-layout.hpp                 |   28 +-
 hiro/gtk/font.cpp                                  |    4 +-
 hiro/gtk/monitor.cpp                               |    6 +
 hiro/gtk/monitor.hpp                               |    3 +-
 hiro/qt/font.cpp                                   |    2 +-
 hiro/qt/monitor.cpp                                |   14 +-
 hiro/qt/monitor.hpp                                |    7 +-
 hiro/windows/font.cpp                              |    2 +-
 hiro/windows/monitor.cpp                           |   31 +-
 hiro/windows/monitor.hpp                           |    7 +-
 hiro/windows/widget/button.cpp                     |    7 +-
 hiro/windows/widget/frame.cpp                      |    4 +-
 icarus/GNUmakefile                                 |   25 +-
 icarus/core/bs-memory.cpp                          |   12 +-
 icarus/core/core.cpp                               |    7 +
 icarus/core/core.hpp                               |   28 +-
 icarus/core/famicom.cpp                            |   15 +-
 icarus/core/game-boy-advance.cpp                   |   11 +-
 icarus/core/game-boy-color.cpp                     |   11 +-
 icarus/core/game-boy.cpp                           |   11 +-
 icarus/core/game-gear.cpp                          |   11 +-
 icarus/core/master-system.cpp                      |   11 +-
 icarus/core/mega-drive.cpp                         |   11 +-
 icarus/core/pc-engine.cpp                          |   11 +-
 icarus/core/sufami-turbo.cpp                       |   15 +-
 icarus/core/super-famicom.cpp                      |   43 +-
 icarus/core/supergrafx.cpp                         |   11 +-
 icarus/core/wonderswan-color.cpp                   |   11 +-
 icarus/core/wonderswan.cpp                         |   11 +-
 icarus/data/icarus.Manifest                        |   14 +
 icarus/data/icarus.desktop                         |    8 +
 icarus/data/icarus.ico                             |  Bin 0 -> 33644 bytes
 icarus/{ => data}/icarus.plist                     |    2 -
 icarus/data/icarus.png                             |  Bin 0 -> 14477 bytes
 icarus/data/icarus.rc                              |    2 +
 icarus/data/icarus.svg                             |   80 +
 icarus/heuristics/mega-drive.cpp                   |    8 +-
 icarus/heuristics/super-famicom.cpp                |   92 +-
 icarus/icarus.cpp                                  |   13 +-
 icarus/settings.cpp                                |    4 +-
 nall/GNUmakefile                                   |   12 +-
 nall/dl.hpp                                        |    2 +-
 nall/intrinsics.hpp                                |    8 +-
 nall/mosaic.hpp                                    |    5 -
 nall/mosaic/bitstream.hpp                          |   48 -
 nall/mosaic/context.hpp                            |  221 --
 nall/mosaic/parser.hpp                             |  119 -
 nall/path.hpp                                      |    6 +-
 nall/platform.hpp                                  |    2 +-
 nall/run.hpp                                       |    5 +-
 ruby/GNUmakefile                                   |    4 +-
 ruby/audio/alsa.cpp                                |   27 +-
 ruby/audio/ao.cpp                                  |   26 +-
 ruby/audio/asio.cpp                                |   44 +-
 ruby/audio/directsound.cpp                         |   27 +-
 ruby/audio/openal.cpp                              |   30 +-
 ruby/audio/oss.cpp                                 |   32 +-
 ruby/audio/pulseaudio.cpp                          |   27 +-
 ruby/audio/pulseaudiosimple.cpp                    |   27 +-
 ruby/audio/wasapi.cpp                              |   34 +-
 ruby/audio/xaudio2.cpp                             |   27 +-
 ruby/input/joypad/directinput.cpp                  |    4 +-
 ruby/input/joypad/sdl.cpp                          |    4 +-
 ruby/input/joypad/udev.cpp                         |   43 +-
 ruby/ruby.hpp                                      |   14 +-
 ruby/video/direct3d.cpp                            |    5 +-
 ruby/video/wgl.cpp                                 |    1 -
 193 files changed, 3325 insertions(+), 4642 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/higan.git



More information about the Pkg-games-commits mailing list