| Summary: | compile error on qtopia/zaurus | ||
|---|---|---|---|
| Product: | SDL | Reporter: | Miklos Gyozo <nyos> |
| Component: | video | Assignee: | Ryan C. Gordon <icculus> |
| Status: | RESOLVED FIXED | QA Contact: | Sam Lantinga <slouken> |
| Severity: | major | ||
| Priority: | P2 | ||
| Version: | 1.2.11 | ||
| Hardware: | Other | ||
| OS: | Linux | ||
Fixed in Subversion, thanks! --ryan. |
Sharp Zaurus is a Linux-based PDA with ARM processor, using Qtopia as a GUI. src/video/qtopia/SDL_sysvideo.cc doesn't compile, complaining lines 230 and 231: this->info.current_w = desktop_size.width(); this->info.current_h = desktop_size.height(); after replacing "this" with "_this", it does _this->info.current_w = desktop_size.width(); _this->info.current_h = desktop_size.height(); please fix that