mirror of
https://github.com/holub/mame
synced 2025-06-21 19:56:53 +03:00

* subhuntr.cpp: S2636 PVI was seemingly uncommented by mistake in 93308b483e
- offsets and sound routing seem to be copy/pasted from somewhere
* phi: prettier config
* scramble.cpp, wallc.cpp: avoid some calls to subdevice<...>(...)
* makedep.py: open source files as UTF-8 (GitHub #5482)
* minimaws: be less trusting
16 lines
366 B
Python
16 lines
366 B
Python
#!/usr/bin/python
|
|
##
|
|
## license:BSD-3-Clause
|
|
## copyright-holders:Vas Crabb
|
|
##
|
|
## Simple script for deploying minimaws with mod_wsgi.
|
|
|
|
import os.path
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
import lib.wsgiserve
|
|
|
|
application = lib.wsgiserve.MiniMawsApp(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'minimaws.sqlite3'))
|