FAQ
Cover
\
Build
\
Source
\
Bugs
\
Reference
\
Libraries
\
Tools
The bugs database has moved
here
.
Bug 489 : library-pdf mousepress example uses framerate instead of frameRate
Last modified: 2007-11-25 08:51
P
roject:
processing
trash
Version:
unspecified
Co
m
ponent:
android
book
core
libraries
pde
reference
tools
web
Status:
RESOLVED
Resolution:
FIXED -
Pr
i
ority:
P2
Severity:
normal
Platform
All
O
S:
All
Windows
Mac OS
Linux
Other
Reporter:
fry
Assigned To:
REAS
Attachment
Type
Created
Size
Actions
Description
: Opened: 2007-01-19 10:58
first reported here:
http://processing.org/discourse/yabb_beta/YaBB.cgi?board=LibraryProblems;action=display;num=1169146997
void setup() {
size(600, 600);
framerate(24);
}
should be:
void setup() {
size(600, 600);
frameRate(24);
}