Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
PUAE
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
PUAE
Commits
1b9788e8
Commit
1b9788e8
authored
Dec 07, 2010
by
GnoStiC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
puae 2.3.1
parent
2dd5ee19
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
78 additions
and
52 deletions
+78
-52
puae_bridge.cpp
src/gui-qt/puae_bridge.cpp
+14
-0
puae_mainwindow.ui
src/gui-qt/puae_mainwindow.ui
+63
-51
picasso96.c
src/picasso96.c
+1
-1
No files found.
src/gui-qt/puae_bridge.cpp
View file @
1b9788e8
...
@@ -8,11 +8,14 @@
...
@@ -8,11 +8,14 @@
*/
*/
#include <QtGui/QApplication>
#include <QtGui/QApplication>
#include <QtGui/QMessageBox>
#include <QThread>
#include <QThread>
#include "puae_bridge.h"
#include "puae_bridge.h"
#include "puae_mainwindow.h"
#include "puae_mainwindow.h"
//#include "ui_puae_mainwindow.h"
//#include "ui_puae_mainwindow.h"
static
unsigned
int
gui_available
;
extern
"C"
{
extern
"C"
{
#include "gui.h"
#include "gui.h"
#include "options.h"
#include "options.h"
...
@@ -79,6 +82,17 @@ void gui_display (int shortcut)
...
@@ -79,6 +82,17 @@ void gui_display (int shortcut)
extern
"C"
void
gui_message
(
const
char
*
format
,...)
extern
"C"
void
gui_message
(
const
char
*
format
,...)
{
{
char
msg
[
2048
];
va_list
parms
;
va_start
(
parms
,
format
);
vsprintf
(
msg
,
format
,
parms
);
va_end
(
parms
);
if
(
gui_available
)
QMessageBox
::
information
(
0
,
"PUAE"
,
msg
);
// write_log (msg);
}
}
void
gui_fps
(
int
fps
,
int
idle
)
void
gui_fps
(
int
fps
,
int
idle
)
...
...
src/gui-qt/puae_mainwindow.ui
View file @
1b9788e8
This diff is collapsed.
Click to expand it.
src/picasso96.c
View file @
1b9788e8
...
@@ -59,7 +59,7 @@ int p96hack_vpos, p96hack_vpos2, p96refresh_active;
...
@@ -59,7 +59,7 @@ int p96hack_vpos, p96hack_vpos2, p96refresh_active;
#define NOBLITTER 0
#define NOBLITTER 0
#define NOBLITTER_BLIT 0
#define NOBLITTER_BLIT 0
#define USE_HARDWARESPRITE 1
#define USE_HARDWARESPRITE 1
#define P96TRACING_ENABLED
1
#define P96TRACING_ENABLED
0
#define P96SPRTRACING_ENABLED 0
#define P96SPRTRACING_ENABLED 0
static
int
hwsprite
=
0
;
static
int
hwsprite
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment