Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David MacDonald
purr-data
Commits
3657ad5a
Commit
3657ad5a
authored
Jan 23, 2008
by
Miller Puckette
Browse files
0.41-0 release
parent
2f51807d
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/m_pd.h
View file @
3657ad5a
...
...
@@ -11,7 +11,7 @@ extern "C" {
#define PD_MAJOR_VERSION 0
#define PD_MINOR_VERSION 41
#define PD_BUGFIX_VERSION 0
#define PD_TEST_VERSION "
test12
"
#define PD_TEST_VERSION ""
/* old name for "MSW" flag -- we have to take it for the sake of many old
"nmakefiles" for externs, which will define NT and not MSW */
...
...
src/s_loader.c
View file @
3657ad5a
...
...
@@ -20,6 +20,9 @@
#include "m_pd.h"
#include "s_stuff.h"
#include <stdio.h>
#ifdef _MSC_VER
/* This is only for Microsoft's compiler, not cygwin, e.g. */
#define snprintf sprintf_s
#endif
typedef
void
(
*
t_xxx
)(
void
);
...
...
src/s_main.c
View file @
3657ad5a
...
...
@@ -169,7 +169,11 @@ int sys_fontheight(int fontsize)
}
int
sys_defaultfont
;
#ifdef MSW
#define DEFAULTFONT 12
#else
#define DEFAULTFONT 10
#endif
static
void
openit
(
const
char
*
dirname
,
const
char
*
filename
)
{
...
...
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