mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
internal/uidriver/mobile: Bug fix: iOS with ebitengl build tag didn't work correctly
This commit is contained in:
parent
5b768679a3
commit
dddfe73604
@ -12,6 +12,9 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//go:build android || (ios && ebitengl)
|
||||
// +build android ios,ebitengl
|
||||
|
||||
package restorable
|
||||
|
||||
const needsDisposingWhenRestoring = true
|
@ -12,8 +12,10 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//go:build !android && !js
|
||||
// +build !android,!js
|
||||
//go:build !android && !js && (!ios || !ebitengl)
|
||||
// +build !android
|
||||
// +build !js
|
||||
// +build !ios !ebitengl
|
||||
|
||||
package restorable
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user