-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/local file asset loading #53
Feature/local file asset loading #53
Conversation
return NSStringMake(full_path); | ||
NSString *EJApp::pathForResource(NSString *resourcePath) { | ||
string full_path = string(EJECTA_APP_FOLDER) + resourcePath->getCString(); | ||
return NSStringMake(full_path); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spaces vs tabs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup if I modified an entire method I changed all the syntax in the method (spaces, pointers, whitespace etc.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So we should go for spaces instead of tabs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tabs or space is fine as long as a tab is not set to 8 columns! I'm going to indent bomb the whole project later after we get the restructuring done. Not concerned about indentations at the moment.
Feature/local file asset loading
No description provided.